#example1 {
  border: 1px solid black;
  background: url(../imagenes/conejo.png);
  background-size: 100px 80px;
  background-repeat: no-repeat;
  padding: 15px;
}

#example2 {
  border: 1px solid black;
  background: url(../imagenes/conejo.png);
  background-repeat: no-repeat;
  padding: 15px;
}
.div1 {
  border: 1px solid black;
  height: 120px;
  width: 150px;
  background: url(../imagenes/conejo.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.div2 {
  border: 1px solid black;
  height: 120px;
  width: 150px;
  background: url(../imagenes/conejo.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.div3 {
  border: 1px solid black;
  height: 120px;
  width: 150px;
  background: url(../imagenes/conejo.png);
  background-repeat: no-repeat;
}

.hero-image {
  background: url(../imagenes/rauw.jpg) no-repeat center;
  background-size: cover;
  height: 400px;
  position: relative;
}

.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}
